Function: treemacs-iter->next!--inliner

treemacs-iter->next!--inliner is a function defined in treemacs-persistence.el.

Signature

(treemacs-iter->next!--inliner INLINE--FORM SELF)

Source Code

;; Defined in ~/.emacs.d/elpa/treemacs-20251226.1307/treemacs-persistence.el
;; Could not find source code, showing raw function object.
#[(inline--form self)
  ((ignore inline--form)
   (catch 'inline--just-use
     (let*
	 ((exp self)
	  (self
	   (if (macroexp-copyable-p exp) exp (make-symbol "self")))
	  (body
	   (list 'let
		 (list
		  (list 'head
			(list 'car (list 'treemacs-iter->list self)))
		  (list 'tail
			(list 'cdr (list 'treemacs-iter->list self))))
		 (list 'setf (list 'treemacs-iter->list self) 'tail)
		 'head)))
       (if (eq self exp) body
	 (macroexp-let* (list (list self exp)) body)))))
  (t)]